'Declaration
Public Overloads Sub DrawBeziers( _
ByVal pen As System.Drawing.Pen, _
ByVal points() As System.Drawing.PointF _
)
public void DrawBeziers(
System.Drawing.Pen pen,
System.Drawing.PointF[] points
)
Parameters
pen
A System.Drawing.Pen object that determines the color, width of the curve.
points
Array of System.Drawing.PointF structures that represent the points that determine the curve.
Remarks
The first spline is defined by the first four points in the array. Each additional spline uses the last point as a start and requires an extra three points. The total number of points in the array must be of the form 3 * n + 1 or an exception will be thrown.